// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// Interval type. public enum ProgressPriority { /// Progress priority. [UsedImplicitly] P0 = 0, /// Progress priority. P1 = 1, /// Progress priority. P2 = 2, /// Progress priority. P3 = 3, /// Progress priority. P4 = 4, /// Progress priority. P5 = 5, /// Progress priority. P6 = 6 } }